/* ================= ROOT COLORS ================= */

:root {
    --blue: #1f5ea9;
    --red: #ef2026;
    --deep-blue: #03386b;
    --white: #ffffff;
}


/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
}


/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    animation: navbarDown 0.35s ease;
}

@keyframes navbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}


/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #111;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}


/* ================= ORDER BUTTON ================= */

.order-btn {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.cart-icon {
    background: var(--red);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.order-btn span:last-child {
    background: var(--blue);
    color: #fff;
    padding: 18px 30px;
    font-weight: 600;
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--deep-blue);
}


/* ================= HERO ================= */

.gallery-hero {
    min-height: 470px;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(3, 56, 107, 0.96),
            rgba(2, 63, 119, 0.85)
        ),
        url("images/gallery-hero-bg.jpg") center / cover no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(18, 102, 170, 0.25),
            transparent 45%
        );
}

.hero-content {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}


/* ================= HERO TEXT ================= */

.hero-text {
    width: 46%;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    line-height: 1;
}

.title-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 28px 0;
    color: var(--red);
    width: 300px;
}

.title-line span {
    height: 1px;
    background: var(--red);
    flex: 1;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.8;
}


/* ================= HERO COLLAGE ================= */

.hero-collage {
    width: 48%;
    height: 390px;
    position: relative;
    perspective: 1200px;
}

.hero-img {
    position: absolute;
    object-fit: cover;
    border: 6px solid #fff;
    border-radius: 17px;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        filter 0.5s ease,
        opacity 0.5s ease;
}

.img-one {
    width: 170px;
    height: 220px;
    left: 30px;
    top: 130px;
    transform: rotate(-7deg);
}

.img-two {
    width: 190px;
    height: 190px;
    left: 170px;
    top: 20px;
    transform: rotate(-7deg);
}

.img-three {
    width: 180px;
    height: 210px;
    right: 90px;
    top: 50px;
    transform: rotate(6deg);
}

.img-four {
    width: 190px;
    height: 180px;
    left: 220px;
    bottom: 20px;
    transform: rotate(-5deg);
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.12) !important;
    z-index: 20;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    filter: brightness(1.08);
}

.hero-collage:hover .hero-img:not(:hover) {
    opacity: 0.7;
    filter: blur(1px);
}


/* ================= GALLERY SECTION ================= */

.gallery-section {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    color: var(--deep-blue);
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.title-icon {
    color: var(--red);
    font-size: 20px;
}

.gallery-heading {
    margin-bottom: 35px;
}


/* ================= GALLERY GRID ================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.gallery-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* ================= IMAGE OVERLAY ================= */

.image-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(3, 55, 105, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 30px;

    opacity: 0;

    transition: 0.35s ease;

    pointer-events: none;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}


/* ================= IMAGE LIGHTBOX ================= */

.lightbox {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background:
        rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(8px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px 100px;

    z-index: 99999;
}

.lightbox.show {
    display: flex;
}


/* ================= BIG LIGHTBOX IMAGE ================= */

.lightbox img {
    width: auto;
    height: auto;

    max-width: 88%;
    max-height: 88vh;

    object-fit: contain;

    border-radius: 15px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6);

    animation:
        lightboxZoom 0.35s ease;
}

@keyframes lightboxZoom {

    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}


/* ================= LIGHTBOX BUTTONS ================= */

.lightbox-prev,
.lightbox-next,
.lightbox-close {
    position: absolute;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #fff;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

    z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    background: var(--red);
    color: #fff;
}


/* PREVIOUS */

.lightbox-prev {
    left: 30px;
    top: 50%;

    transform:
        translateY(-50%);
}

.lightbox-prev:hover {
    transform:
        translateY(-50%)
        scale(1.1);
}


/* NEXT */

.lightbox-next {
    right: 30px;
    top: 50%;

    transform:
        translateY(-50%);
}

.lightbox-next:hover {
    transform:
        translateY(-50%)
        scale(1.1);
}


/* CLOSE */

.lightbox-close {
    top: 25px;
    right: 25px;

    background: var(--red);
    color: #fff;
}

.lightbox-close:hover {
    background: #fff;
    color: var(--red);

    transform: rotate(90deg);
}


/* ================= VIDEO SECTION ================= */

.video-section {
    padding: 60px 0;
    margin-top: 30px;

    background:
        linear-gradient(
            90deg,
            #f9fbfd,
            #edf4fa
        );

    position: relative;
    overflow: hidden;
}

.video-wrapper {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 55px;
}


/* ================= VIDEO IMAGE ================= */

.video-image {
    height: 330px;
    position: relative;

    border-radius: 13px;
    overflow: hidden;
}

.video-image img {
    width: 880px;
    height: 340px;
    object-fit: cover;
}

.video-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        rgba(3, 45, 87, 0.1);
}


/* ================= PLAY BUTTON ================= */

.play-btn {
    position: absolute;

    z-index: 3;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 88px;
    height: 88px;

    border-radius: 50%;

    background: var(--blue);
    color: #fff;

    font-size: 28px;

    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.2);

    transition: 0.3s;
}

.play-btn:hover {
    background: var(--red);

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* ================= VIDEO CONTENT ================= */

.small-title {
    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 700;
    font-size: 14px;

    margin-bottom: 18px;
}

.small-title span {
    margin-left: 15px;
}

.video-content h2 {
    color: var(--deep-blue);

    font-family:
        "Playfair Display",
        serif;

    font-size: 42px;
    line-height: 1.2;

    margin-bottom: 20px;
}

.video-content p {
    max-width: 430px;

    line-height: 1.8;

    color: #4e5967;

    margin-bottom: 25px;
}

.watch-btn {
    background: var(--red);
    color: #fff;

    padding: 15px 27px;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s;
}

.watch-btn i {
    margin-left: 10px;
}

.watch-btn:hover {
    background: var(--blue);
}


/* ================= VIDEO POPUP ================= */

.video-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.94);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    z-index: 999999;
}

.video-popup.show {
    display: flex;
}


/* ================= VIDEO POPUP CONTENT ================= */

.video-popup-content {
    position: relative;

    width: auto;
    max-width: 95%;

    height: auto;
    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================= PORTRAIT VIDEO FIX ================= */

.video-popup video {
    display: block;

    width: auto;
    height: auto;

    max-width: 90vw;
    max-height: 88vh;

    object-fit: contain;

    border-radius: 15px;

    background: #000;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6);
}


/* ================= CLOSE VIDEO BUTTON ================= */

.close-video {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: #ef2026;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    z-index: 1000000;

    transition: 0.3s ease;
}

.close-video:hover {
    background: #fff;
    color: #ef2026;

    transform: rotate(90deg);
}


/* ================= MOBILE VIDEO POPUP ================= */

@media (max-width: 600px) {

    .video-popup {
        padding: 70px 15px 20px;
    }

    .video-popup-content {
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
    }

    .video-popup video {
        max-width: 100%;
        max-height: 80vh;
    }

    .close-video {
        width: 45px;
        height: 45px;

        top: 15px;
        right: 15px;

        font-size: 19px;
    }

}


/* ================= FOOTER ================= */

.footer {
    background:
        linear-gradient(
            110deg,
            #06467f,
            #033664
        );

    color: #fff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(4, 1fr);

    gap: 35px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    background: #fff;
    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-column {
    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 30px;
    height: 2px;

    background: var(--red);
}

.footer-column a {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-column a:hover,
.footer-column .footer-active {
    color: var(--red);
}

.contact-column p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-column i {
    margin-right: 8px;
}


/* ================= COPYRIGHT ================= */

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.25);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    font-size: 12px;

    color: #ccd9e7;
}

.copyright span {
    color: var(--red);

    margin-left: 15px;
}


/* ================= RESPONSIVE 1100 ================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ================= RESPONSIVE 800 ================= */

@media (max-width: 800px) {

    .top-right span {
        display: none;
    }


    /* MOBILE NAV */

    .navbar .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px;

        text-align: center;
    }

    .order-btn {
        margin-left: auto;
        margin-right: 15px;
    }


    /* HERO */

    .hero-content {
        flex-direction: column;

        padding: 60px 0;
    }

    .hero-text,
    .hero-collage {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-collage {
        margin-top: 30px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gallery-item img {
        height: 330px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 70px 70px;
    }

    .lightbox img {
        max-width: 100%;
    }


    /* VIDEO */

    .video-wrapper {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ================= RESPONSIVE 550 ================= */

@media (max-width: 550px) {

    .top-bar .container {
        justify-content: center;
    }

    .top-right {
        display: none;
    }

    .logo img {
        width: 80px;
    }

    .order-btn span:last-child {
        padding: 14px 15px;

        font-size: 12px;
    }

    .cart-icon {
        width: 45px;
        height: 45px;
    }


    /* HERO */

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-collage {
        height: 300px;
    }

    .hero-img {
        transform: none !important;
    }

    .img-one {
        left: 0;

        width: 45%;
    }

    .img-two {
        left: 45%;

        width: 45%;
    }

    .img-three {
        display: none;
    }

    .img-four {
        left: 25%;

        width: 50%;
    }


    /* TITLE */

    .section-title h2 {
        text-align: center;

        font-size: 20px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 420px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding:
            70px 15px
            90px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 75vh;

        border-radius: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;

        top: auto;
        bottom: 20px;

        transform: none;
    }

    .lightbox-prev {
        left: calc(50% - 65px);
    }

    .lightbox-next {
        right: calc(50% - 65px);
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.08);
    }

    .lightbox-close {
        width: 45px;
        height: 45px;

        top: 15px;
        right: 15px;
    }


    /* VIDEO */

    .video-image {
        height: 260px;
    }

    .video-content h2 {
        font-size: 34px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        padding-left: 0;

        border-left: none;
    }

}
